e63eef16aa9d8070e29525c4ffb5286fc6291b50,Mage.Sets/src/mage/sets/magic2015/Quickling.java,QuicklingEffect,apply,#Game#Ability#,102

Before Change


            boolean targetChosen = false;
            TargetPermanent target = new TargetPermanent(1, 1, filter, false);

            if (target.canChoose(controller.getId(), game)) {
                controller.choose(Outcome.ReturnToHand, target, source.getSourceId(), game);
                Permanent permanent = game.getPermanent(target.getFirstTarget());

                if ( permanent != null ) {

After Change


            boolean targetChosen = false;
            TargetPermanent target = new TargetPermanent(1, 1, filter, false);

            if (target.canChoose(controller.getId(), game) && controller.chooseUse(outcome, "Return another creature you control to its owner's hand?", game)) {
                controller.chooseTarget(Outcome.ReturnToHand, target, source, game);
                Permanent permanent = game.getPermanent(target.getFirstTarget());
                if ( permanent != null ) {